home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / Item Class / Item headers / CItemTableDemo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  512 b   |  29 lines  |  [TEXT/KAHL]

  1. /*
  2.  * File:        CItemTableDemo.c
  3.  * Created:        7/25/93
  4.  *
  5.  * Copyright © 1993 Animas Software Production. All rights reserved.
  6.  */
  7.  
  8. #define _H_CItemTableDemo
  9.  
  10. #include "CDLOGDirector.h"
  11.  
  12. class    CItemList;
  13.  
  14. class CItemTableDemo : public CDLOGDirector
  15. {
  16.  
  17. public:
  18.  
  19.     struct CItemList            *itsItems;
  20.     struct CItemTable        *itsItemTable;
  21.     
  22.     void IItemTableDemo( void);
  23.     
  24.     virtual void DoCommand( long aCmd);
  25.     virtual void ProviderChanged( CCollaborator *aProvider, long reason, void *info);
  26.     
  27.     virtual void Dispose( void);
  28.     
  29. };